home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 July / 07_02.iso / software / xq-xsetup / files / setup.exe / {app} / plugins / XQ WinXP Tour Balloon.xpl < prev    next >
Text File  |  2002-01-20  |  2KB  |  57 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="2"
  4. "UIPATH 1"="Startup/Shutdown\Startup\Windows NT/2K/XP\60) Windows Launch"
  5. "NAME"="Windows Tour Balloon Popup"
  6. "VERSION"="1.00"
  7. "OSVERSION"="000001"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Show Tour Balloon pop-up for all users"
  10. "TEXT 2"="Show Tour Balloon pop-up for current user"
  11. "DESCRIPTION 1"="The first three times a users loggs on, Windows will display a balloon tip in the tray area so the user can start the Windows Tour."
  12. "DESCRIPTION 2"="You can deativate this pop-up here for the current user and all users on this computer. If both items are set, the ALL USERS setting overwrites the setting for the current user."
  13. "AUTHOR"="Xteq Systems"
  14. "CONTACTURL"="http://www.xteq.com/"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"="see http://support.microsoft.com/support/kb/articles/q311/4/89.ASP"
  17.  
  18. sV_All="HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Applets\Tour\RunCount" 'DW. 0=no run
  19. sV_Cur="HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Applets\Tour\RunCount"
  20.  
  21. Sub Plugin_Initialize 
  22.  i=RegReadValue(sV_All)
  23.  if IsEmpty(i)=true or i<>0 then
  24.     SetUIElement 1,true
  25.  end if
  26.  
  27.  i=RegReadValue(sV_Cur)
  28.  if IsEmpty(i)=true or i<>0 then
  29.     SetUIElement 2,true
  30.  end if
  31. End Sub
  32.  
  33.  
  34. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  35.  if GetUIElement(1)=true then
  36.     if RegValueExists(sV_ALL) then Call RegDeleteValue(sV_All)
  37.  else
  38.     Call RegWriteValue(sV_All,0,2)
  39.  end if
  40.  
  41.  if GetUIElement(2)=true then
  42.     if RegValueExists(sV_Cur) then Call RegDeleteValue(sV_Cur)
  43.  else
  44.     Call RegWriteValue(sV_Cur,0,2)
  45.  end if
  46.  
  47.  
  48.  Call Logoff
  49. End Sub
  50.  
  51.  
  52. Sub Plugin_Terminate 
  53. End Sub
  54.  
  55.  
  56.  
  57.